home *** CD-ROM | disk | FTP | other *** search
/ CD School House 9 / CD School House 9.0 - Wayzata Technology (1994).iso / pc / dos / teachaid / pccai / caiarc1.exe / MONITOR.CAI < prev    next >
Text File  |  1993-12-06  |  668b  |  23 lines

  1. .rem                                                                 
  2. .rem -----------------PRESS CTRL-G (Go) TO RUN THIS PROGRAM--------- 
  3. .rem                                                                 
  4. .rem The @MON command checks monitor support from 12 (VGA) down to 0,
  5. .rem which is MONO. It branches to the FIRST, therefore the highest,
  6. .rem monitor type in the search list.
  7. @MON(*12:VGA,9:EGA,2:CGA,0:MONO)
  8. @LABEL:VGA
  9. This monitor supports VGA
  10. @GOTO:END
  11. @LABEL:EGA
  12. This monitor supports EGA
  13. @GOTO:END
  14. @LABEL:CGA
  15. This monitor supports CGA
  16. @GOTO:END
  17. @LABEL:MONO
  18. This monitor is a monochrome monitor
  19. @LABEL:END
  20. .locate 24,1
  21. .pause
  22. .cls
  23.